home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / logrotate.d / cupsys < prev    next >
Encoding:
Text File  |  2006-10-09  |  252 b   |  16 lines

  1. /var/log/cups/*log {
  2.     daily
  3.     missingok
  4.     rotate 7
  5.     sharedscripts
  6.     postrotate
  7.         if [ -e /var/run/cups/cupsd.pid ]; then
  8.             invoke-rc.d --quiet cupsys force-reload > /dev/null
  9.             sleep 10
  10.         fi
  11.     endscript
  12.     compress
  13.     notifempty
  14.     create 640 cupsys lpadmin
  15. }
  16.